home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / utils / console / svgatext.3 / svgatext / SVGATextMode-1.3 / cfg_data.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-07  |  1.5 KB  |  49 lines

  1. /*  SVGATextMode -- An SVGA textmode manipulation/enhancement tool
  2.  *
  3.  *  Copyright (C) 1995,1996  Koen Gadeyne
  4.  *
  5.  *  This program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2 of the License, or
  8.  *  (at your option) any later version.
  9.  *
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with this program; if not, write to the Free Software
  17.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  */
  19.  
  20.  
  21. /***
  22.  *** Config file data structures for SVGATextMode.
  23.  *** These will hold all the data degenerated by the parser
  24.  ***
  25.  *** This needs only be included by the main program. All others 
  26.  *** can include cfg_structs.h for struct types
  27.  ***/
  28.  
  29. #ifndef _CFG_DATA_H
  30. #define _CFG_DATA_H
  31.  
  32. #include "cfg_structs.h"
  33.  
  34. t_mode *text_mode_list=NULL;
  35. t_mon_timing *h_mon_limits=NULL;
  36. t_mon_timing *v_mon_limits=NULL;
  37. t_terminals *p_terminals=NULL;
  38. t_clockdef clock_data = INIT_CLOCKDEF;
  39. t_fontdef font_data = INIT_FONTDATA;
  40. int chipset = CS_NONE;
  41. int underline_pos=-1; /* no underlining is default */
  42. int bordercolor = 0;
  43. int cursor_start=29, cursor_end=31;
  44. char *resetprogpath;
  45. char *defaultmode;
  46. int STM_Options;
  47.  
  48. #endif
  49.